home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / make / icmake-6.000 / icmake-6 / icmake / un / dumpstri.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-08  |  136 b   |  12 lines

  1. #include "icmun.h"
  2.  
  3. void dumpstring (s)
  4. char *s;
  5. {
  6.     while (*s)
  7.     {
  8.         putchar (iscntrl (*s) ? '.' : *s);
  9.         s++;
  10.     }
  11. }
  12.